library(here)
library(tidyverse)
library(conflicted)
# library(easystats)
exoplanets <- read_csv(here("data", "exoplanet_catalog_080325.csv"))
Warning: One or more parsing issues, call `problems()` on your data frame for details, e.g.:
dat <- vroom(...)
problems(dat)Rows: 7418 Columns: 98── Column specification ─────────────────────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (12): name, planet_status, publication, detection_type, mass_measurement_type, radius_measurement_type, ...
dbl (83): mass, mass_error_min, mass_error_max, mass_sini, mass_sini_error_min, mass_sini_error_max, radius,...
lgl (2): hot_point_lon, star_magnetic_field
date (1): updated
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
exoplanets
library(skimr)
skim(exoplanets)
Warning: There was 1 warning in `dplyr::summarize()`.
ℹ In argument: `dplyr::across(tidyselect::any_of(variable_names), mangled_skimmers$funs)`.
ℹ In group 0: .
Caused by warning:
! There was 1 warning in `dplyr::summarize()`.
ℹ In argument: `dplyr::across(tidyselect::any_of(variable_names), mangled_skimmers$funs)`.
Caused by warning in `inline_hist()`:
! Variable contains Inf or -Inf value(s) that were converted to NA.
── Data Summary ────────────────────────
Values
Name exoplanets
Number of rows 7418
Number of columns 98
_______________________
Column type frequency:
character 12
Date 1
logical 2
numeric 83
________________________
Group variables None
library(naniar)
# options(repr.plot.width = 10, repr.plot.height = 20)
gg_miss_var(exoplanets)
library(visdat)
# options(repr.plot.width = 20, repr.plot.height = 10)
vis_dat(exoplanets)
names(exoplanets)
[1] "name" "planet_status" "mass"
[4] "mass_error_min" "mass_error_max" "mass_sini"
[7] "mass_sini_error_min" "mass_sini_error_max" "radius"
[10] "radius_error_min" "radius_error_max" "orbital_period"
[13] "orbital_period_error_min" "orbital_period_error_max" "semi_major_axis"
[16] "semi_major_axis_error_min" "semi_major_axis_error_max" "eccentricity"
[19] "eccentricity_error_min" "eccentricity_error_max" "inclination"
[22] "inclination_error_min" "inclination_error_max" "angular_distance"
[25] "discovered" "updated" "omega"
[28] "omega_error_min" "omega_error_max" "tperi"
[31] "tperi_error_min" "tperi_error_max" "tconj"
[34] "tconj_error_min" "tconj_error_max" "tzero_tr"
[37] "tzero_tr_error_min" "tzero_tr_error_max" "tzero_tr_sec"
[40] "tzero_tr_sec_error_min" "tzero_tr_sec_error_max" "lambda_angle"
[43] "lambda_angle_error_min" "lambda_angle_error_max" "impact_parameter"
[46] "impact_parameter_error_min" "impact_parameter_error_max" "tzero_vr"
[49] "tzero_vr_error_min" "tzero_vr_error_max" "k"
[52] "k_error_min" "k_error_max" "temp_calculated"
[55] "temp_calculated_error_min" "temp_calculated_error_max" "temp_measured"
[58] "hot_point_lon" "geometric_albedo" "geometric_albedo_error_min"
[61] "geometric_albedo_error_max" "log_g" "publication"
[64] "detection_type" "mass_measurement_type" "radius_measurement_type"
[67] "alternate_names" "molecules" "star_name"
[70] "ra" "dec" "mag_v"
[73] "mag_i" "mag_j" "mag_h"
[76] "mag_k" "star_distance" "star_distance_error_min"
[79] "star_distance_error_max" "star_metallicity" "star_metallicity_error_min"
[82] "star_metallicity_error_max" "star_mass" "star_mass_error_min"
[85] "star_mass_error_max" "star_radius" "star_radius_error_min"
[88] "star_radius_error_max" "star_sp_type" "star_age"
[91] "star_age_error_min" "star_age_error_max" "star_teff"
[94] "star_teff_error_min" "star_teff_error_max" "star_detected_disc"
[97] "star_magnetic_field" "star_alternate_names"
library(janitor)
exoplanets %>% tabyl(planet_status)
planet_status n percent
Confirmed 7418 1
options(repr.matrix.max.rows=100)
exoplanets %>%
add_prop_miss() %>%
arrange(prop_miss_all) %>%
head(10) %>%
t()
[,1]
name "K2-261 b"
planet_status "Confirmed"
mass "0.22300"
mass_error_min "0.03100"
mass_error_max "0.03100"
mass_sini "0.22300"
mass_sini_error_min "0.03100"
mass_sini_error_max "0.03100"
radius "0.85000"
radius_error_min "0.02200"
radius_error_max "0.0260"
orbital_period " 11.633440"
orbital_period_error_min "1.2e-04"
orbital_period_error_max "1.2e-04"
semi_major_axis "0.10200"
semi_major_axis_error_min "0.02000"
semi_major_axis_error_max "0.01900"
eccentricity "0.4200"
eccentricity_error_min "0.0300"
eccentricity_error_max "0.0300"
inclination "88.400"
inclination_error_min "1.90"
inclination_error_max "1.10"
angular_distance NA
discovered "2018"
updated "2024-09-06"
omega "143.0"
omega_error_min " 18.0"
omega_error_max " 18.0"
tperi "2457908"
tperi_error_min "0.40000"
tperi_error_max "0.59000"
tconj "2457907"
tconj_error_min "6.7e-04"
tconj_error_max "5.4e-04"
tzero_tr "2457907"
tzero_tr_error_min "6.700000e-04"
tzero_tr_error_max "5.400000e-04"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle " 32.0"
lambda_angle_error_min "33.0"
lambda_angle_error_max "48.0"
impact_parameter "0.187"
impact_parameter_error_min NA
impact_parameter_error_max NA
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 18.800"
k_error_min " 2.600"
k_error_max " 2.600"
temp_calculated "1080.0"
temp_calculated_error_min "110.0"
temp_calculated_error_max "100.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "EPIC 201498078 b, 2MASS J10520778+0029359 b, TYC 255-257-1 b, WISE J105207.76+002935.6 b"
molecules NA
star_name "K2-261"
ra "163.03242"
dec " 0.493352"
mag_v "10.600"
mag_i NA
mag_j " 9.337"
mag_h " 8.920"
mag_k NA
star_distance "214.5800"
star_distance_error_min " 1.9700"
star_distance_error_max " 1.9700"
star_metallicity " 0.3600"
star_metallicity_error_min "0.0600"
star_metallicity_error_max "0.0600"
star_mass "1.100"
star_mass_error_min "0.02000"
star_mass_error_max "0.01000"
star_radius "1.6500"
star_radius_error_min "0.0400"
star_radius_error_max "0.0400"
star_sp_type "G7 IV/V"
star_age "8.80"
star_age_error_min "0.30"
star_age_error_max "0.40"
star_teff "5537.00"
star_teff_error_min " 71.000"
star_teff_error_max " 71.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 201498078, 2MASS J10520778+0029359, TYC 255-257-1, WISE J105207.76+002935.6"
prop_miss_all "0.2040816"
[,2]
name "Kepler-1704 b"
planet_status "Confirmed"
mass "4.16000"
mass_error_min "0.29000"
mass_error_max "0.28000"
mass_sini "4.16000"
mass_sini_error_min "0.29000"
mass_sini_error_max "0.28000"
radius "1.06600"
radius_error_min "0.04200"
radius_error_max "0.0440"
orbital_period "988.881120"
orbital_period_error_min "9.1e-04"
orbital_period_error_max "9.1e-04"
semi_major_axis "2.02700"
semi_major_axis_error_min "0.03000"
semi_major_axis_error_max "0.02400"
eccentricity "0.9200"
eccentricity_error_min "0.0160"
eccentricity_error_max "0.0100"
inclination "89.000"
inclination_error_min "0.26"
inclination_error_max "0.56"
angular_distance NA
discovered "2017"
updated "2024-06-13"
omega " 82.4"
omega_error_min " 5.1"
omega_error_max " 4.5"
tperi "2455072"
tperi_error_min "0.19000"
tperi_error_max "0.19000"
tconj "2455072"
tconj_error_min "6.4e-04"
tconj_error_max "6.3e-04"
tzero_tr "2455072"
tzero_tr_error_min "2.454833e+06"
tzero_tr_error_max "2.454833e+06"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.370"
impact_parameter_error_min "0.2200"
impact_parameter_error_max "0.1600"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k "190.000"
k_error_min "16.000"
k_error_max "17.000"
temp_calculated " 253.8"
temp_calculated_error_min " 4.1"
temp_calculated_error_max " 3.7"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Announced on a website"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "KOI-375 b, KOI-375.01"
molecules NA
star_name "Kepler-1704"
ra "291.20120"
dec " 51.144279"
mag_v NA
mag_i "13.111"
mag_j "12.138"
mag_h "11.842"
mag_k "11.792"
star_distance "824.0000"
star_distance_error_min "11.0000"
star_distance_error_max "11.0000"
star_metallicity " 0.1960"
star_metallicity_error_min "0.0580"
star_metallicity_error_max "0.0580"
star_mass "1.132"
star_mass_error_min "0.05000"
star_mass_error_max "0.04000"
star_radius "1.6970"
star_radius_error_min "0.0580"
star_radius_error_max "0.0590"
star_sp_type "G2IV"
star_age "7.40"
star_age_error_min "1.00"
star_age_error_max "1.50"
star_teff "5746.00"
star_teff_error_min " 88.000"
star_teff_error_max " 87.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "12356617, KOI-375, 2MASS J19244828+5108393"
prop_miss_all "0.2040816"
[,3]
name "K2-232 Ab"
planet_status "Confirmed"
mass "0.39800"
mass_error_min "0.03700"
mass_error_max "0.03700"
mass_sini NA
mass_sini_error_min NA
mass_sini_error_max NA
radius "1.00000"
radius_error_min "0.02200"
radius_error_max "0.0220"
orbital_period " 11.168454"
orbital_period_error_min "2.3e-05"
orbital_period_error_max "2.3e-05"
semi_major_axis "0.10356"
semi_major_axis_error_min "0.00077"
semi_major_axis_error_max "0.00081"
eccentricity "0.2580"
eccentricity_error_min "0.0250"
eccentricity_error_max "0.0250"
inclination "89.140"
inclination_error_min "0.13"
inclination_error_max "0.13"
angular_distance NA
discovered "2018"
updated "2024-07-28"
omega "207.0"
omega_error_min " 3.8"
omega_error_max " 3.8"
tperi "2457912"
tperi_error_min "0.79000"
tperi_error_max "1.00000"
tconj "2457825"
tconj_error_min "9.3e-05"
tconj_error_max "9.3e-05"
tzero_tr "2457825"
tzero_tr_error_min "9.300000e-05"
tzero_tr_error_max "9.300000e-05"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle "348.9"
lambda_angle_error_min " 6.6"
lambda_angle_error_max " 6.6"
impact_parameter "0.041"
impact_parameter_error_min "0.0290"
impact_parameter_error_max "0.4300"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 33.420"
k_error_min " 3.020"
k_error_max " 3.120"
temp_calculated "1030.0"
temp_calculated_error_min " 15.0"
temp_calculated_error_max " 15.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "EPIC 247098361 b, Cl Melotte 25 341 b, 2MASS J04550395+1839164 b, BD+18 753 b, GSC 01284-00745 b, HD 286123 b, TYC 1284-745-1 b, WISE J045504.00+183915.8 b"
molecules NA
star_name "K2-232 A"
ra " 73.76651"
dec " 18.654535"
mag_v " 9.800"
mag_i NA
mag_j " 8.739"
mag_h " 8.480"
mag_k NA
star_distance "131.2100"
star_distance_error_min " 0.7600"
star_distance_error_max " 0.7600"
star_metallicity " 0.1000"
star_metallicity_error_min "0.0400"
star_metallicity_error_max "0.0400"
star_mass "1.190"
star_mass_error_min "0.03000"
star_mass_error_max "0.03000"
star_radius "1.1600"
star_radius_error_min "0.0200"
star_radius_error_max "0.0200"
star_sp_type "F9/G0V"
star_age "1.43"
star_age_error_min "0.75"
star_age_error_max "0.82"
star_teff "6154.00"
star_teff_error_min " 60.000"
star_teff_error_max " 60.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "2MASS J04550395+1839164, BD+18 753, EPIC 247098361, GSC 01284-00745, HD 286123, TYC 1284-745-1, WISE J045504.00+183915.8"
prop_miss_all "0.2142857"
[,4]
name "K2-24 b"
planet_status "Confirmed"
mass "0.05978"
mass_error_min "0.00661"
mass_error_max "0.00692"
mass_sini "0.06480"
mass_sini_error_min "0.00090"
mass_sini_error_max "0.00500"
radius "0.50299"
radius_error_min "0.00544"
radius_error_max "0.0058"
orbital_period " 20.882570"
orbital_period_error_min "7.0e-05"
orbital_period_error_max "5.0e-05"
semi_major_axis "0.16730"
semi_major_axis_error_min "0.00560"
semi_major_axis_error_max "0.00340"
eccentricity "0.0600"
eccentricity_error_min "0.0100"
eccentricity_error_max "0.0100"
inclination "89.630"
inclination_error_min "0.25"
inclination_error_max "0.25"
angular_distance NA
discovered "2016"
updated "2024-09-06"
omega "351.8"
omega_error_min " 0.5"
omega_error_max " 0.4"
tperi NA
tperi_error_min NA
tperi_error_max NA
tconj "2456906"
tconj_error_min "5.3e-03"
tconj_error_max "5.5e-03"
tzero_tr "2450966"
tzero_tr_error_min "7.000000e-04"
tzero_tr_error_max "7.000000e-04"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.200"
impact_parameter_error_min "0.1300"
impact_parameter_error_max "0.1200"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 4.500"
k_error_min " 1.100"
k_error_max " 1.100"
temp_calculated " 732.0"
temp_calculated_error_min " 11.0"
temp_calculated_error_max " 11.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "EPIC 203771098 b, 2MASS J16101770-2459251 b, EPIC 203771098.02, TYC 6784-837-1 b, WISE J161017.64-245925.8 b"
molecules NA
star_name "K2-24"
ra "242.57371"
dec "-24.990332"
mag_v "11.648"
mag_i "10.640"
mag_j " 9.635"
mag_h " 9.294"
mag_k " 9.180"
star_distance "170.5000"
star_distance_error_min " 0.5000"
star_distance_error_max " 0.5000"
star_metallicity " 0.4100"
star_metallicity_error_min "0.0500"
star_metallicity_error_max "0.0500"
star_mass "1.091"
star_mass_error_min "0.05600"
star_mass_error_max "0.05600"
star_radius "1.1850"
star_radius_error_min "0.0110"
star_radius_error_max "0.0110"
star_sp_type "G2V"
star_age "4.90"
star_age_error_min "1.70"
star_age_error_max "1.70"
star_teff "5726.00"
star_teff_error_min " 65.000"
star_teff_error_max " 65.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 203771098, CD-24 12581, 2MASS J16101770-2459251, TYC 6784-837-1, WISE J161017.64-245925.8"
prop_miss_all "0.2244898"
[,5]
name "K2-24 c"
planet_status "Confirmed"
mass "0.05160"
mass_error_min "0.00060"
mass_error_max "0.00410"
mass_sini "0.08500"
mass_sini_error_min "0.02200"
mass_sini_error_max "0.02200"
radius "0.70750"
radius_error_min "0.01160"
radius_error_max "0.0107"
orbital_period " 42.347320"
orbital_period_error_min "1.8e-04"
orbital_period_error_max "1.8e-04"
semi_major_axis "0.26200"
semi_major_axis_error_min "0.01100"
semi_major_axis_error_max "0.01400"
eccentricity "0.0282"
eccentricity_error_min "0.0007"
eccentricity_error_max "0.0003"
inclination "89.440"
inclination_error_min "0.11"
inclination_error_max "0.15"
angular_distance NA
discovered "2016"
updated "2024-09-06"
omega "139.9"
omega_error_min " 2.5"
omega_error_max " 0.6"
tperi NA
tperi_error_min NA
tperi_error_max NA
tconj "2456915"
tconj_error_min "7.9e-03"
tconj_error_max "7.8e-03"
tzero_tr "2456916"
tzero_tr_error_min "4.000000e-04"
tzero_tr_error_max "4.000000e-04"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.462"
impact_parameter_error_min "0.1000"
impact_parameter_error_max "0.0660"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 4.600"
k_error_min " 1.200"
k_error_max " 1.200"
temp_calculated " 591.0"
temp_calculated_error_min " 12.0"
temp_calculated_error_max " 12.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "EPIC 203771098 c, 2MASS J16101770-2459251 c, EPIC 203771098.01, TYC 6784-837-1 c, WISE J161017.64-245925.8 c"
molecules NA
star_name "K2-24"
ra "242.57371"
dec "-24.990332"
mag_v "11.648"
mag_i "10.640"
mag_j " 9.635"
mag_h " 9.294"
mag_k " 9.180"
star_distance "170.5000"
star_distance_error_min " 0.5000"
star_distance_error_max " 0.5000"
star_metallicity " 0.4100"
star_metallicity_error_min "0.0500"
star_metallicity_error_max "0.0500"
star_mass "1.091"
star_mass_error_min "0.05600"
star_mass_error_max "0.05600"
star_radius "1.1850"
star_radius_error_min "0.0110"
star_radius_error_max "0.0110"
star_sp_type "G2V"
star_age "4.90"
star_age_error_min "1.70"
star_age_error_max "1.70"
star_teff "5726.00"
star_teff_error_min " 65.000"
star_teff_error_max " 65.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 203771098, CD-24 12581, 2MASS J16101770-2459251, TYC 6784-837-1, WISE J161017.64-245925.8"
prop_miss_all "0.2244898"
[,6]
name "K2-29 Ab"
planet_status "Confirmed"
mass "0.73000"
mass_error_min "0.04000"
mass_error_max "0.04000"
mass_sini "0.73000"
mass_sini_error_min "0.04000"
mass_sini_error_max "0.04000"
radius "1.19000"
radius_error_min "0.02000"
radius_error_max "0.0200"
orbital_period " 3.258832"
orbital_period_error_min "1.9e-06"
orbital_period_error_max "1.9e-06"
semi_major_axis "0.04217"
semi_major_axis_error_min "0.00024"
semi_major_axis_error_max "0.00024"
eccentricity "0.0660"
eccentricity_error_min "0.0220"
eccentricity_error_max "0.0220"
inclination "86.656"
inclination_error_min "0.08"
inclination_error_max "0.11"
angular_distance NA
discovered "2016"
updated "2024-08-01"
omega "132.0"
omega_error_min " 21.0"
omega_error_max " 21.0"
tperi NA
tperi_error_min NA
tperi_error_max NA
tconj "2453219"
tconj_error_min "2.2e-03"
tconj_error_max "2.2e-03"
tzero_tr "2453219"
tzero_tr_error_min "2.200000e-03"
tzero_tr_error_max "2.200000e-03"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle " 1.5"
lambda_angle_error_min " 8.7"
lambda_angle_error_max " 8.7"
impact_parameter "0.580"
impact_parameter_error_min "0.0200"
impact_parameter_error_max "0.0200"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k "103.500"
k_error_min " 5.400"
k_error_max " 5.400"
temp_calculated "1171.0"
temp_calculated_error_min NA
temp_calculated_error_max NA
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "WASP-152 bB, EPIC 211089792 bb, WISE J041040.88+242405.9 b, EPIC 211089792 Ab, EPIC 211089792.01a, TOI-4623.01, TYC 1818-1428-1 b b, 1SWASP J041040.95+242407.3 b b, 2MASS J04104086+2424061 bb"
molecules NA
star_name "K2-29 A"
ra " 62.67065"
dec " 24.402042"
mag_v "12.560"
mag_i NA
mag_j "10.622"
mag_h "10.168"
mag_k "10.060"
star_distance "178.4750"
star_distance_error_min " 1.3010"
star_distance_error_max " 1.3200"
star_metallicity " 0.2829"
star_metallicity_error_min "0.0188"
star_metallicity_error_max "0.0188"
star_mass "0.935"
star_mass_error_min "0.09817"
star_mass_error_max "0.14341"
star_radius "0.8170"
star_radius_error_min "0.0740"
star_radius_error_max "0.0616"
star_sp_type "G7V"
star_age "2.60"
star_age_error_min "1.20"
star_age_error_max "1.20"
star_teff "5387.06"
star_teff_error_min "144.837"
star_teff_error_max "140.344"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 211089792, WASP-152, WISE J041040.88+242405.9, EPIC 211089792 A, TOI-4623, TYC 1818-1428-1, 1SWASP J041040.95+242407.3, 2MASS J04104086+2424061"
prop_miss_all "0.2244898"
[,7]
name "KELT-4 Ab"
planet_status "Confirmed"
mass "0.90000"
mass_error_min "0.06000"
mass_error_max "0.06000"
mass_sini "0.87800"
mass_sini_error_min "0.06700"
mass_sini_error_max "0.07000"
radius "1.70000"
radius_error_min "0.05000"
radius_error_max "0.0500"
orbital_period " 2.989594"
orbital_period_error_min "5.0e-06"
orbital_period_error_max "5.0e-06"
semi_major_axis "0.04321"
semi_major_axis_error_min "0.00077"
semi_major_axis_error_max "0.00085"
eccentricity "0.0300"
eccentricity_error_min "0.0210"
eccentricity_error_max "0.0160"
inclination "83.110"
inclination_error_min "0.57"
inclination_error_max "0.48"
angular_distance NA
discovered "2013"
updated "2024-09-06"
omega "300.0"
omega_error_min "130.0"
omega_error_max "110.0"
tperi "2456190"
tperi_error_min "0.00022"
tperi_error_max "0.00022"
tconj NA
tconj_error_min NA
tconj_error_max NA
tzero_tr NA
tzero_tr_error_min NA
tzero_tr_error_max NA
tzero_tr_sec "2456189"
tzero_tr_sec_error_min "0.032"
tzero_tr_sec_error_max "0.047"
lambda_angle " 80.0"
lambda_angle_error_min "25.0"
lambda_angle_error_max "25.0"
impact_parameter "0.689"
impact_parameter_error_min "0.0012"
impact_parameter_error_max "0.0012"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k "108.600"
k_error_min " 7.400"
k_error_max " 7.400"
temp_calculated "1827.0"
temp_calculated_error_min NA
temp_calculated_error_max NA
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Radial Velocity"
mass_measurement_type "Radial Velocity"
radius_measurement_type "Primary Transit"
alternate_names "BD+26 2091 Ab, TOI-5384.01"
molecules NA
star_name "KELT-4 A"
ra "157.06255"
dec " 25.573194"
mag_v " 9.980"
mag_i NA
mag_j " 9.010"
mag_h " 8.790"
mag_k " 8.690"
star_distance "211.0000"
star_distance_error_min "13.0000"
star_distance_error_max "13.0000"
star_metallicity "-0.1160"
star_metallicity_error_min "0.0710"
star_metallicity_error_max "0.0670"
star_mass "1.204"
star_mass_error_min "0.06300"
star_mass_error_max "0.07200"
star_radius "1.6100"
star_radius_error_min "0.0680"
star_radius_error_max "0.0780"
star_sp_type "F8IV"
star_age "4.38"
star_age_error_min "0.88"
star_age_error_max "0.81"
star_teff "6207.00"
star_teff_error_min " 76.000"
star_teff_error_max " 76.000"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "BD+26 2091 A, TOI-5384"
prop_miss_all "0.2244898"
[,8]
name "K2-266 Ac"
planet_status "Confirmed"
mass "0.00091"
mass_error_min "0.00035"
mass_error_max "0.00053"
mass_sini "0.00091"
mass_sini_error_min "0.00035"
mass_sini_error_max "0.00053"
radius "0.06300"
radius_error_min "0.00800"
radius_error_max "0.0090"
orbital_period " 7.814000"
orbital_period_error_min "1.5e-03"
orbital_period_error_max "1.8e-03"
semi_major_axis "0.06790"
semi_major_axis_error_min "0.00110"
semi_major_axis_error_max "0.00110"
eccentricity "0.0420"
eccentricity_error_min "0.0300"
eccentricity_error_max "0.0430"
inclination "88.280"
inclination_error_min "0.41"
inclination_error_max "0.81"
angular_distance NA
discovered "2018"
updated "2024-06-11"
omega " 87.0"
omega_error_min " 61.0"
omega_error_max " 61.0"
tperi "2457908"
tperi_error_min "1.20000"
tperi_error_max "1.20000"
tconj "2457947"
tconj_error_min "6.4e-03"
tconj_error_max "6.4e-03"
tzero_tr "2457947"
tzero_tr_error_min "6.500000e-03"
tzero_tr_error_max "6.300000e-03"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.600"
impact_parameter_error_min "0.2800"
impact_parameter_error_max "0.1400"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 0.119"
k_error_min " 0.046"
k_error_max " 0.073"
temp_calculated " 665.0"
temp_calculated_error_min " 8.0"
temp_calculated_error_max " 8.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type NA
radius_measurement_type "Primary Transit"
alternate_names "2MASS J10314450+0056152 c, EPIC 248435473 A c, EPIC 248435473 c, K2-266 A c, WISE J103144.54+005614.5 c"
molecules NA
star_name "K2-266 A"
ra "157.93544"
dec " 0.937571"
mag_v NA
mag_i NA
mag_j " 9.611"
mag_h " 9.041"
mag_k NA
star_distance " 77.5586"
star_distance_error_min " 0.3549"
star_distance_error_max " 0.3581"
star_metallicity "-0.1200"
star_metallicity_error_min "0.4200"
star_metallicity_error_max "0.4000"
star_mass "0.680"
star_mass_error_min "0.09400"
star_mass_error_max "0.06790"
star_radius "0.7337"
star_radius_error_min "0.0572"
star_radius_error_max "0.0678"
star_sp_type "K7V"
star_age "8.40"
star_age_error_min "4.80"
star_age_error_max "4.10"
star_teff "4362.00"
star_teff_error_min "137.357"
star_teff_error_max "110.463"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 248435473, WISE J103144.54+005614.5, EPIC 248435473 A, TIC 374180079, 2MASS J10314450+0056152"
prop_miss_all "0.2346939"
[,9]
name "K2-266 Ad"
planet_status "Confirmed"
mass "0.02800"
mass_error_min "0.01196"
mass_error_max "0.01793"
mass_sini "0.02958"
mass_sini_error_min "0.00629"
mass_sini_error_max "0.00912"
radius "0.26100"
radius_error_min "0.01100"
radius_error_max "0.0120"
orbital_period " 14.697000"
orbital_period_error_min "3.5e-04"
orbital_period_error_max "3.4e-04"
semi_major_axis "0.10350"
semi_major_axis_error_min "0.00170"
semi_major_axis_error_max "0.00160"
eccentricity "0.0470"
eccentricity_error_min "0.0320"
eccentricity_error_max "0.0430"
inclination "89.460"
inclination_error_min "0.25"
inclination_error_max "0.32"
angular_distance NA
discovered "2018"
updated "2024-06-11"
omega " 87.0"
omega_error_min " 62.0"
omega_error_max " 62.0"
tperi "2457945"
tperi_error_min "2.30000"
tperi_error_max "2.30000"
tconj "2457945"
tconj_error_min "1.2e-03"
tconj_error_max "1.2e-03"
tzero_tr "2457945"
tzero_tr_error_min "1.200000e-03"
tzero_tr_error_max "1.200000e-03"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.290"
impact_parameter_error_min "0.1700"
impact_parameter_error_max "0.1200"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 3.170"
k_error_min " 0.690"
k_error_max " 0.990"
temp_calculated " 538.0"
temp_calculated_error_min " 6.0"
temp_calculated_error_max " 7.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type NA
radius_measurement_type "Primary Transit"
alternate_names "2MASS J10314450+0056152 d, EPIC 248435473 A d, EPIC 248435473 d, K2-266 A d, WISE J103144.54+005614.5 d"
molecules NA
star_name "K2-266 A"
ra "157.93544"
dec " 0.937571"
mag_v NA
mag_i NA
mag_j " 9.611"
mag_h " 9.041"
mag_k NA
star_distance " 77.5586"
star_distance_error_min " 0.3549"
star_distance_error_max " 0.3581"
star_metallicity "-0.1200"
star_metallicity_error_min "0.4200"
star_metallicity_error_max "0.4000"
star_mass "0.680"
star_mass_error_min "0.09400"
star_mass_error_max "0.06790"
star_radius "0.7337"
star_radius_error_min "0.0572"
star_radius_error_max "0.0678"
star_sp_type "K7V"
star_age "8.40"
star_age_error_min "4.80"
star_age_error_max "4.10"
star_teff "4362.00"
star_teff_error_min "137.357"
star_teff_error_max "110.463"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 248435473, WISE J103144.54+005614.5, EPIC 248435473 A, TIC 374180079, 2MASS J10314450+0056152"
prop_miss_all "0.2346939"
[,10]
name "K2-266 Ae"
planet_status "Confirmed"
mass "0.04499"
mass_error_min "0.01573"
mass_error_max "0.02014"
mass_sini "0.02611"
mass_sini_error_min "0.00566"
mass_sini_error_max "0.00850"
radius "0.24400"
radius_error_min "0.01000"
radius_error_max "0.0120"
orbital_period " 19.482000"
orbital_period_error_min "1.2e-03"
orbital_period_error_max "1.2e-03"
semi_major_axis "0.12490"
semi_major_axis_error_min "0.00200"
semi_major_axis_error_max "0.00190"
eccentricity "0.0430"
eccentricity_error_min "0.0300"
eccentricity_error_max "0.0360"
inclination "89.450"
inclination_error_min "0.18"
inclination_error_max "0.25"
angular_distance NA
discovered "2018"
updated "2024-06-11"
omega " 89.0"
omega_error_min " 58.0"
omega_error_max " 57.0"
tperi "2457939"
tperi_error_min "2.90000"
tperi_error_max "2.90000"
tconj "2457939"
tconj_error_min "1.3e-03"
tconj_error_max "1.3e-03"
tzero_tr "2457939"
tzero_tr_error_min "1.300000e-03"
tzero_tr_error_max "1.300000e-03"
tzero_tr_sec NA
tzero_tr_sec_error_min NA
tzero_tr_sec_error_max NA
lambda_angle NA
lambda_angle_error_min NA
lambda_angle_error_max NA
impact_parameter "0.360"
impact_parameter_error_min "0.1600"
impact_parameter_error_max "0.1000"
tzero_vr NA
tzero_vr_error_min NA
tzero_vr_error_max NA
k " 2.530"
k_error_min " 0.560"
k_error_max " 0.840"
temp_calculated " 490.0"
temp_calculated_error_min " 6.0"
temp_calculated_error_max " 6.0"
temp_measured NA
hot_point_lon NA
geometric_albedo NA
geometric_albedo_error_min NA
geometric_albedo_error_max NA
log_g NA
publication "Published in a refereed paper"
detection_type "Primary Transit"
mass_measurement_type NA
radius_measurement_type "Primary Transit"
alternate_names "2MASS J10314450+0056152 e, EPIC 248435473 A e, EPIC 248435473 e, K2-266 A e, WISE J103144.54+005614.5 e"
molecules NA
star_name "K2-266 A"
ra "157.93544"
dec " 0.937571"
mag_v NA
mag_i NA
mag_j " 9.611"
mag_h " 9.041"
mag_k NA
star_distance " 77.5586"
star_distance_error_min " 0.3549"
star_distance_error_max " 0.3581"
star_metallicity "-0.1200"
star_metallicity_error_min "0.4200"
star_metallicity_error_max "0.4000"
star_mass "0.680"
star_mass_error_min "0.09400"
star_mass_error_max "0.06790"
star_radius "0.7337"
star_radius_error_min "0.0572"
star_radius_error_max "0.0678"
star_sp_type "K7V"
star_age "8.40"
star_age_error_min "4.80"
star_age_error_max "4.10"
star_teff "4362.00"
star_teff_error_min "137.357"
star_teff_error_max "110.463"
star_detected_disc NA
star_magnetic_field NA
star_alternate_names "EPIC 248435473, WISE J103144.54+005614.5, EPIC 248435473 A, TIC 374180079, 2MASS J10314450+0056152"
prop_miss_all "0.2346939"